home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000454_news@columbia.edu _Thu Jan 13 14:24:59 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA16805
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 13 Jan 2000 14:24:59 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA12247
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 13 Jan 2000 14:07:43 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Subject: Re: MS-DOS Kermit, more capabalities
  11. Message-ID: <7qW8C+KG8QyZ@cc.usu.edu>
  12. Date: 13 Jan 00 11:46:22 MDT
  13. Organization: Utah State University
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <cPdf4.3607$KP.188008@tw12.nn.bcandid.com>, cangel@famvid.com writes:
  17. > On 1900-01-07 jrd@cc.usu.edu(JoeDoupnik) said:
  18. > JD>> FD> Is there no way to free the memory for additional
  19. > JD>> FD> 'take'  commands  to  be used or does it just load up one
  20. > JD>> FD> time and thats it?
  21. > JD>Take command files are literally Kermit commands, one after
  22. > JD>the other. The file is not stored in Kermit, the lines are read and
  23. > JD>processed one at a time. Macros and variables result in storage,
  24. > JD>however, and there are limits on their quantity. Storage for values
  25. > JD>of them are taken from DOS free memory. An MS-DOS Kermit command
  26. > JD>line works in a buffer and hence has physical limits (1000 bytes
  27. > JD>in round numbers).
  28. > With such a rich macro language it would be `nice' to be able to reuse
  29. > the available memory so that more complex macros could be written and
  30. > used while online without an `exit / reload' being required.
  31.  
  32.     As Jeff noted, undefine a variable or macro by giving it an
  33. empty definition.
  34.  
  35. > While I have your attention:  I've been compiling and fiddling with the
  36. > WATTCP package which claims to have a part of it's code inside MSKermit.
  37.  
  38.     Wattcp and MSK are now very different animals for TCP/IP work.
  39. That divergence started when Erick very generously offered his code to
  40. the project. The gulf spread very quickly very widely. Today there is
  41. little resemblence. The MSK TCP/IP stack is modern and robust, but it
  42. is not a library or other exportable form. Its internal applications,
  43. such as say the DHCP client, are also modern.
  44.  
  45. > MSKermit is many times more stable than the demo apps that come with the
  46. > WATTCP source (operation online is `intermittent' with send being exremely
  47. > poor and receive seems locked into something less than 9k6).  MSKermit
  48. > OTOH seems to move right along using the same packet driver and achieves
  49. > 90% of theoretical max transfers on a regular basis.
  50.  
  51.     The MSK code is designed to work solidly with Packet Drivers and
  52. Novell's ODI drivers. It's not a series of approximations. It is robust
  53. by design.
  54.  
  55. > Question: could you direct me to any particular part of the WATTCP based
  56. > code in the MSKermit source that would reveal how MSKermit seems to be
  57. > so much better than the `origninal'?
  58.  
  59.     Please see commments above.
  60.     Joe D.